From 2ca833688abd4ce88f8eba06ee98c08d35d2d486 Mon Sep 17 00:00:00 2001 From: Volodymyr Babchuk Date: Thu, 27 Oct 2022 11:48:36 +0200 Subject: [PATCH] vpci: include xen/vmap.h to fix build on ARM MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Patch b4f211606011 ("vpci/msix: fix PBA accesses") introduced call to iounmap(), but not added corresponding include. Signed-off-by: Volodymyr Babchuk Reviewed-by: Roger Pau Monné Release-acked-by: Henry Wang --- xen/drivers/vpci/vpci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xen/drivers/vpci/vpci.c b/xen/drivers/vpci/vpci.c index 98198dc2c9..6d48d496bb 100644 --- a/xen/drivers/vpci/vpci.c +++ b/xen/drivers/vpci/vpci.c @@ -19,6 +19,7 @@ #include #include +#include /* Internal struct to store the emulated PCI registers. */ struct vpci_register { -- 2.30.2